home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / gfx / edit / VE-batchpro.lha / notes / BatchProcess.notes
Encoding:
Text File  |  1999-07-16  |  2.4 KB  |  99 lines

  1.  
  2. Visual Engineering - Batch process v1.00
  3. ----------------------------------------
  4.  
  5. This script calls selected Image Engineer-script for all selected
  6. files in Magellan-dirlist, applies an effect to file and saves it.
  7.  
  8.  
  9.  
  10.  
  11.  
  12. Script was originally made for Directory Opus, Magellan. You can
  13. still with little effort, make it work with any other filemanager.
  14.  
  15. With Magellan, create yourself a new button-bank and add a
  16. function like this to one of buttons:
  17.  
  18.   DOpus5:ARexx/VisualBorder.rexx {s} {o}
  19.  
  20.  
  21. If that really was too hard for you, then better ask your mam to
  22. buy you a PC. Next one will for sure give you a lot headache...
  23.  
  24.  
  25.  
  26.  
  27. So, line after comment line, "/* DO SOMETHING */" is the effective
  28. one. By default it calls VisualBorderDemo-script. Arguments for it
  29. are in it's .notes-file.
  30.  
  31. (address command "Sys:Rexxc/rx ie:arexx/VisualBorderDemo.rexx" newfile ROUNDCORNER 90 13)
  32.  
  33.  
  34.  
  35. After VisualBordering, script continues and checking is made, if
  36. original filename had a suffix.
  37.  
  38.  .JPEG, .JPG, .JFIF are translated to ".jpg"
  39.  .PNG,  .PING       are translated to ".png"
  40.  .TGA,  .TARGA      are translated to ".tga"
  41.  .TIF,  .TIFF       are translated to ".tif"
  42.  others             are translated to ".jpg"
  43.  
  44. Ofcourse save-fileformat will be same than it's suffix.
  45. File is saved to "processed"-directory of sourcedir.
  46.  
  47.  
  48.  
  49. If you are going to use this script from shell or from other
  50. filemanager, tell it 2 arguments; first is sourcedir and second is
  51. filename.
  52.  
  53. Future will bring more helping scripts for Magellan, depending on
  54. feedback and suggestions I receive.
  55.  
  56.  
  57.  
  58.  
  59.  
  60. HISTORY
  61.  
  62.  v1.00
  63.  
  64.   History started
  65.  
  66.  
  67.  
  68.  
  69.  
  70. The archive, where this file came from, can be distributed using
  71. any kind of media (CD, Email, Net, BBS, FTP...), but contents of
  72. original archive must not be seperated from each other.
  73.  
  74. You may modify the script for your own use, but don't except me to
  75. fix it, when you broke it. You may NOT spread modified versions of
  76. the script, nor part of it.
  77.  
  78. If you are going to spread a script of yours, which calls one of
  79. Visual Engineering -scripts, you must include either to
  80. documentfile of your script or header of the script itself, Visual
  81. Engineering -websiteaddress and my name and email address.
  82.  
  83. Like this:
  84.  
  85.  
  86. /*
  87.  
  88.  This script uses Visual Engineering -script(s):
  89.  AddSpace.rexx, PrimaryColors.rexx
  90.  
  91.  By Marko Seppänen <marko.seppanen@wwnet.fi>
  92.  
  93.  Visual Engineering website:
  94.  http://wwnet.fi/users/smarko/visual/
  95.  
  96.  
  97.  */
  98.  
  99.